home *** CD-ROM | disk | FTP | other *** search
/ Mac-Source 1994 July / Mac-Source_July_1994.iso / Other Langs / Tickle-4.0 (tcl) / scripts / extensions.tcl < prev    next >
Encoding:
Text File  |  1993-10-26  |  1.4 KB  |  54 lines  |  [TEXT/$Tcl]

  1.  
  2.  
  3. puts stdout [random 1024]
  4.  
  5. set FD [open "JUNKER" "w"]
  6. puts stdout "FD = $FD"
  7. puts $FD "This is line one."
  8. puts $FD "This is line two."
  9. puts $FD "This is line three."
  10. puts $FD "This is line one.\012" nonewline
  11. puts $FD "This is line two.\012" nonewline
  12. puts $FD "This is line three.\012" nonewline
  13. close $FD
  14.  
  15. loop index 10 101 10 {puts stdout "$index"}
  16.  
  17. puts stdout [sin [expr "[pi] / 4.0"]]
  18. puts stdout [cos 0.0]
  19. puts stdout [log [exp 1]]
  20. puts stdout [log10 1000.0]
  21. puts stdout [cos 90.0]
  22. puts stdout [asin 1.0]
  23. puts stdout [acos -1.0]
  24.  
  25. puts stdout [cindex "012345" 3]
  26. puts stdout [clength "012345"]
  27. puts stdout [crange "012345" 0 2]
  28. puts stdout [csubstr "012345" 0 2]
  29. puts stdout [replicate "012345" 10]
  30. puts stdout [translit "ABCDEFG012345" "Z%X*V&T9^7#5@" "ABCDEFG012345"]
  31. puts stdout [ctype alnum "012345"]
  32. puts stdout [ctype ascii "ABCDEF"]
  33. puts stdout [ctype alpha "ABC123"]
  34. puts stdout [ctype alpha "ABC$$$"]
  35. puts stdout [ctype alnum "0123."]
  36. puts stdout [ctype alnum "-5"]
  37. puts stdout [ctype cntrl "AAAAA"]
  38. puts stdout [ctype upper "AAAAA"]
  39. puts stdout [ctype lower "AAAAA"]
  40. puts stdout [ctype lower "a"]
  41. puts stdout [ctype digit "8"]
  42. puts stdout [ctype digit "("]
  43. puts stdout [ctype punct "."]
  44. puts stdout [ctype punct "!"]
  45. puts stdout [ctype punct "#"]
  46. puts stdout [ctype space " "]
  47. puts stdout [ctype ord "c"]
  48. puts stdout [ctype ord "C"]
  49. puts stdout [ctype xdigit "#"]
  50. puts stdout [ctype xdigit "-"]
  51. puts stdout [ctype lower "a"]
  52. puts stdout [ctype cntrl "\004"]
  53.  
  54.